home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 2003 September / PC Answers September 2003.iso / Software / trial / MonitorIT 5.2.06 / monitorit_fullsetup.exe / data1.cab / Database / CreateProcessMonitorTable.sql < prev    next >
Encoding:
Text File  |  2003-06-24  |  1.4 KB  |  26 lines

  1. CREATE TABLE [ProcessCheckMonitor] (
  2.     [ID] [int] IDENTITY (1, 1) NOT NULL ,
  3.     [ComputerID] [int] NULL CONSTRAINT [DF__Temporary__Compu__108B795B] DEFAULT (0),
  4.     [AlertGroupID] [int] NULL CONSTRAINT [DF__Temporary__Alert__117F9D94] DEFAULT (0),
  5.     [Enable] [bit] NULL CONSTRAINT [DF__Temporary__Enabl__1273C1CD] DEFAULT (0),
  6.     [ProcessName] [nvarchar] (255) NULL ,
  7.     [ProcessPath] [nvarchar] (255) NULL ,
  8.     [CPUMax] [int] NULL CONSTRAINT [DF__Temporary__CPUMa__1367E606] DEFAULT (0),
  9.     [MemoryMax] [int] NULL CONSTRAINT [DF__Temporary__Memor__145C0A3F] DEFAULT (0),
  10.     [PagedPoolMax] [int] NULL CONSTRAINT [DF__Temporary__Paged__15502E78] DEFAULT (0),
  11.     [NonPagedPoolMax] [int] NULL CONSTRAINT [DF__Temporary__NonPa__164452B1] DEFAULT (0),
  12.     [PageFileMax] [int] NULL CONSTRAINT [DF__Temporary__PageF__173876EA] DEFAULT (0),
  13.     [NotifyOnly] [bit] NULL CONSTRAINT [DF__Temporary__Notif__182C9B23] DEFAULT (0),
  14.     [NotCheck] [bit] NULL CONSTRAINT [DF__Temporary__NotCh__1920BF5C] DEFAULT (0),
  15.     [AndCheck] [bit] NULL CONSTRAINT [DF__Temporary__AndCh__1A14E395] DEFAULT (0),
  16.     [Restart] [bit] NULL CONSTRAINT [DF__Temporary__Resta__1B0907CE] DEFAULT (0),
  17.     [Halt] [bit] NULL CONSTRAINT [DF__TemporaryU__Halt__1BFD2C07] DEFAULT (0),
  18.     [MiscParms] [ntext] NULL ,
  19.     CONSTRAINT [aaaaaProcessCheckMonitor_PK] PRIMARY KEY  NONCLUSTERED 
  20.     (
  21.         [ID]
  22.     )  ON [PRIMARY] 
  23. ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
  24. GO
  25.  
  26.